圖片縮放效果 補


Posted by mijouhsieh on 2023-07-19

圖片定位不動,滑鼠hover過去放大

圖片定位不動,滑鼠滾輪在圖片上zoom in zoom out

頁面滾輪往下滑,圖片變大

範例


圖片定位不動,滑鼠hover過去放大

<div class="img-container">
    <img src="https://xxx.jpg" />
</div>
.img-container { //照片容器定寬高
    width:200px; height:200px;
    overflow:hidden;
}
.img-container img {  //照片scale 大小、轉場設定
    transform:scale(1,1);
    transition: all 1s ease-out;
}
.img-container img:hover { //照片hover時的scale 大小
transform:scale(1.2,1.2);
}

頁面滾輪往下滑,圖片變大


#img-resize







Related Posts

C 語言練習程式(1) & linux把檔案內容複製到剪貼簿

C 語言練習程式(1) & linux把檔案內容複製到剪貼簿

[Web] SSL/TLS和Https完整流程圖

[Web] SSL/TLS和Https完整流程圖

How to compare a fixed date stored in an object with the current date in JavaScript?

How to compare a fixed date stored in an object with the current date in JavaScript?


Comments